
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.menu {
  position:relative;
  
  width: 100%;
  background:#006cbf;
  display: flex;
  justify-content: center;
}
.menu * {
  box-sizing: border-box;
}
.menu .center {
  width: 1200px;
  height:60px;
  line-height:60px;
}
.menu .ul-list {
  display: flex;
}
.menu .ul-list > li {
  flex: 1;
  border-right: 1px dotted #eee;
  position: relative;
}
.menu .ul-list > li:last-child {
  border-right: none;
}
.menu .ul-list > li > a {
  height: 60px;
  line-height:60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background:#006cbf;
}
.menu .ul-list > li > span {
  color: #fff;
  font-size: 14px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}
.menu .ul-list > li:hover .ol-list {
  display: block;
   z-index: 9999;
  background:#086fb
}

.ul-list li:hover .hoo{background:#b10b0b !important }

.menu .ol-list {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 9999;
  background:#086fbf;
  width: 100%;
}
.menu .ol-list > li > a {
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  height: 45px;
  line-height:20px;
  text-align:center;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #eee;
  justify-content: center;
}
.menu .ol-list > li > a:hover {
  background: #b10b0b;
}